home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 142 / Exame Informatica 142.iso / Programas / Cerberus / CerberusSetup.exe / CerberusNET_Source / CerberusNET.dpr < prev    next >
Encoding:
Text File  |  2006-01-29  |  828 b   |  33 lines

  1. {
  2.  (C) Paul Alan Freshney 2006
  3.  (Based on an Indy Client Demo)
  4.  
  5.   Last Modified: January 29th 2006
  6.  
  7.   This code is free to use as you wish. Please do not distribute this code without
  8.   authorisation from myself. We are free to distribute versions of CerberusNET as
  9.   you wish as long as you link to "www.paulalanfreshney.com/cerberus" somewhere
  10.   within the application!
  11.  
  12.   32
  13. }
  14.  
  15. program CerberusNET;
  16.  
  17. uses
  18.   Forms,
  19.   ClientMain in 'ClientMain.pas' {frmMain},
  20.   utility in 'utility.pas',
  21.   preferences in 'preferences.pas' {frmPreferences},
  22.   about in 'about.pas' {frmAbout};
  23.  
  24. {$R *.RES}
  25.  
  26. begin
  27.   Application.Initialize;
  28.   Application.CreateForm(TfrmMain, frmMain);
  29.   Application.CreateForm(TfrmPreferences, frmPreferences);
  30.   Application.CreateForm(TfrmAbout, frmAbout);
  31.   Application.Run;
  32. end.
  33.